.float-wa {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 110px;
    right: 2%;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    /* Flexbox for perfect centering of the SVG */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    text-decoration: none; /* Removes underline from link */
}

/* Styling the SVG icon */
.whatsapp-icon {
    width: 35px; /* Adjust size of icon here */
    height: 35px;
    fill: white; /* Color of the icon */
}

.float-wa:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}



/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.float-wa {
    animation: pulse 2s infinite;
}

/* 1. The Container: Uses columns instead of grid/flex */
.gallery-container {
    /* Adjust '3' to how many columns you want on desktop */
    column-count: 3;
    column-gap: 15px; /* Space between columns */
    padding: 20px;
}

/* 2. The Image Wrapper */
.gallery-item {
    /* Prevents an image from being cut in half across columns */
    break-inside: avoid;
    margin-bottom: 15px; /* Space between images vertically */
    display: block; /* Removes weird inline spacing */
}

    /* 3. The Image Itself */
    .gallery-item img {
        width: 100%; /* Forces image to fit the column width */
        height: auto; /* CRITICAL: Maintains the original aspect ratio */
        border-radius: 8px; /* Optional styling */
        display: block;
        transition: transform 0.3s ease;
        cursor: pointer;
    }

        /* Optional: Hover effect */
        .gallery-item img:hover {
            transform: scale(1.02);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

/* --- RESPONSIVENESS --- */
/* Tablet */
@media (max-width: 992px) {
    
    .gallery-container {
        column-count: 2;
    }
}

/* Mobile */
@media (max-width: 576px) {

    
    .gallery-container {
        column-count: 1;
    }
}

.testimonial-section{

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* =========================================
   GLASS EFFECT HEADER STYLES
   ========================================= */

/* 1. Base Header (Initial Position) */
.cs-site_header {
        
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); /* Very subtle white border */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* Soft shadow to lift it up */
    /* Positioning */
    width: 100%;
    top: 0;
    z-index: 999;
    transition: all 0.4s ease-in-out; /* Smooth slide animations */
}

/* 2. Hidden State (Scrolling Down) */
/* The JS adds this class when you scroll down. We move it off-screen. */
.cs-gescout_sticky {
    position: fixed !important;
    top: -120px !important; /* Hide above screen */
    opacity: 0;
    visibility: hidden;
    display: block !important; /* Override any inline JS styles */
}

/* 3. Visible State (Scrolling Up - Smart Sticky) */
/* The JS adds this class when you scroll UP. We bring it back with glass effect. */
.cs-gescout_show {
    top: 0 !important;
    opacity: 1;
    visibility: visible;
    background: rgba(10, 10, 10, 0.24);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(231, 182, 92, 0.1);
}

/* Optional: Ensure Logo scales smoothly during the transition */
.cs-site_branding img {
    transition: all 0.3s ease;
}

.cs-gescout_show .cs-site_branding img {
    transform: scale(0.9); /* Slightly smaller logo when sticky */
}

.color-gold {
    color: #e7b65c !important;
}


/* Add these styles for dropdown elements */
select {
    background-color: #1E1E1E;
    color: #f8f9fa;
    border: 1px solid rgba(231, 182, 92, 0.3);
    padding: 8px 12px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
}

select:focus {
    outline: none;
    border-color: #e7b65c;
    box-shadow: 0 0 0 2px rgba(231, 182, 92, 0.2);
}

option {
    background-color: #1E1E1E;
    color: #f8f9fa;
}

/* For custom dropdowns */
.cs-dropdown {
    background-color: #1E1E1E;
    color: #f8f9fa;
    border: 1px solid rgba(231, 182, 92, 0.3);
}

.cs-dropdown:hover {
    border-color: #e7b65c;
}

.cs-main_header_in {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Login Button Styles */
.cs-login_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: transparent;
    border: 2px solid #e7b65c;
    color: #e7b65c;
    font-family: 'Outfit', serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

.cs-login_btn:hover {
    background: #e7b65c;
    color: #181818;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 182, 92, 0.3);
}

.cs-login_btn:active {
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 991px) {

   

    .cs-login_btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
   

    .cs-login_btn {
        padding: 6px 16px;
        font-size: 12px;
        border-width: 1px;
    }
}

/* Header Layout Adjustments */
.cs-main_header_in {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.cs-main_header_left {
    flex: 0 0 auto;
}

.cs-main_header_center {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.cs-main_header_right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.cs-toolbox {
    display: flex;
    align-items: center;
}

.cs-main_header_left,
.cs-main_header_right {
    flex: 0 0 auto;
}

.cs-main_header_center {
    flex: 1 1 auto;
    text-align: center;
}


/* Hero Section Animations */
.animated-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(120deg, rgba(0,0,0,0.5) 0%, rgba(231,182,92,0.2) 100%);
    z-index: 0;
    animation: fadeInOverlay 2s ease;
}
@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    animation: floatShape 6s infinite alternate ease-in-out;
}
.shape1 {
    width: 80px; height: 80px;
    background: #e7b65c;
    top: 10%; left: 5%;
    animation-delay: 0s;
}
.shape2 {
    width: 60px; height: 60px;
    background: #fff;
    top: 60%; left: 80%;
    animation-delay: 1s;
}
.shape3 {
    width: 40px; height: 40px;
    background: #e7b65c;
    top: 80%; left: 30%;
    animation-delay: 2s;
}
@keyframes floatShape {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
    100% { transform: translateY(0) scale(1); }
}
.animated-text {
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.animated-phone {
    animation: bounceIn 1.5s;
}
@keyframes bounceIn {
    0% { transform: scale(0.5); opacity: 0; }
    60% { transform: scale(1.05); opacity: 1; }
    80% { transform: scale(0.95); }
    100% { transform: scale(1); }
}
.animated-btn {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.animated-btn:hover {
    transform: scale(1.08) rotate(-2deg);
}
/* Fun Fact Carousel Styles */
.redesigned-funfact {
    padding: 40px 0;
    background: rgba(20,20,20,0.7);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.funfact-carousel {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.funfact-item {
    background: rgba(231,182,92,0.08);
    border-radius: 16px;
    padding: 24px 32px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transition: transform 0.3s;
}
.funfact-item:hover {
    transform: translateY(-8px) scale(1.04);
}
.funfact-icon img {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
}
.funfact-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: #e7b65c;
    margin-bottom: 8px;
}
.funfact-label {
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 1px;
}
.odometer {
    font-family: 'Outfit', serif;
    font-size: inherit;
    color: inherit;
    transition: none;
}